home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1995 #5 & #6
/
Amiga Plus CD - 1995 - No. 5 and 6.iso
/
pd
/
anti-virus
/
virusworkshop
/
arexx
/
sfile.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1995-06-13
|
668b
|
26 lines
/* Arexxtestscript for the viruskiller VirusWorkshop from Markus Schmall */
/* Version 1.0 (13.6.1995) */
OPTIONS RESULTS /* enable return codes */
address 'VWPort'
OPTIONS FAILAT 999 /* ignore warnings */
/* ------------------------ inSERT YOUR CODE HERE: ------------------- */
say "Checking a single file for virus infection..."
"SFILE ram:beethoven"
say "Checking finished..."
IF rc=0 THEN say "No virus found..."
IF rc=1 THEN say "Virus found and deleted...."
/* ---------------------------- END OF YOUR CODE --------------------- */
EXIT